home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / workbench / directoryopus4 / dopus4_src / dopus_print / strings.c < prev   
C/C++ Source or Header  |  2000-03-11  |  3KB  |  212 lines

  1. /*
  2.  
  3. Directory Opus 4
  4. Original GPL release version 4.12
  5. Copyright 1993-2000 Jonathan Potter
  6.  
  7. This program is free software; you can redistribute it and/or
  8. modify it under the terms of the GNU General Public License
  9. as published by the Free Software Foundation; either version 2
  10. of the License, or (at your option) any later version.
  11.  
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20.  
  21. All users of Directory Opus 4 (including versions distributed
  22. under the GPL) are entitled to upgrade to the latest version of
  23. Directory Opus version 5 at a reduced price. Please see
  24. http://www.gpsoft.com.au for more information.
  25.  
  26. The release of Directory Opus 4 under the GPL in NO WAY affects
  27. the existing commercial status of Directory Opus 5.
  28.  
  29. */
  30.  
  31. #include "print.h"
  32.  
  33. char **string_table;
  34.  
  35. struct DefaultString
  36.     default_strings[]={
  37.         {STR_SELECT_FILE,
  38.         "Select file"},
  39.  
  40.         {STR_ABORT,
  41.         "Abort"},
  42.  
  43.         {STR_CONTINUE,
  44.         "Continue"},
  45.  
  46.         {STR_OKAY,
  47.         "Okay"},
  48.  
  49.         {STR_CANCEL,
  50.         "Cancel"},
  51.  
  52.         {STR_FILE,
  53.         "File"},
  54.  
  55.         {STR_TOP_MARGIN,
  56.         "Top Margin"},
  57.  
  58.         {STR_BOTTOM_MARGIN,
  59.         "Bottom Margin"},
  60.  
  61.         {STR_LEFT_MARGIN,
  62.         "Left Margin"},
  63.  
  64.         {STR_RIGHT_MARGIN,
  65.         "Right Margin"},
  66.  
  67.         {STR_TAB_SIZE,
  68.         "Tab size"},
  69.  
  70.         {STR_PRINT_PITCH,
  71.         "Print pitch"},
  72.  
  73.         {STR_QUALITY,
  74.         "Quality"},
  75.  
  76.         {STR_EJECT,
  77.         "Eject final page"},
  78.  
  79.         {STR_CONFIGURATION,
  80.         "configuration..."},
  81.  
  82.         {STR_TITLE,
  83.         "Title"},
  84.  
  85.         {STR_DATE,
  86.         "Date"},
  87.  
  88.         {STR_PAGE_NUMBER,
  89.         "Page no."},
  90.  
  91.         {STR_TEXT_STYLE,
  92.         "Text style"},
  93.  
  94.         {STR_PRINTER,
  95.         "Printer"},
  96.  
  97.         {STR_PRINT,
  98.         "Print"},
  99.  
  100.         {STR_EXIT,
  101.         "Exit"},
  102.  
  103.         {STR_OUTPUT_TO,
  104.         "Output to..."},
  105.  
  106.         {STR_PICA,
  107.         "Pica"},
  108.  
  109.         {STR_ELITE,
  110.         "Elite"},
  111.  
  112.         {STR_FINE,
  113.         "Fine"},
  114.  
  115.         {STR_NORMAL,
  116.         "Normal"},
  117.  
  118.         {STR_BOLD,
  119.         "Bold"},
  120.  
  121.         {STR_ITALICS,
  122.         "Italics"},
  123.  
  124.         {STR_UNDERLINED,
  125.         "UnLined"},
  126.  
  127.         {STR_DOUBLESTRIKE,
  128.         "DbStrik"},
  129.  
  130.         {STR_SHADOW,
  131.         "Shadow"},
  132.  
  133.         {STR_DRAFT,
  134.         "Draft"},
  135.  
  136.         {STR_LETTER,
  137.         "Letter"},
  138.  
  139.         {STR_HEADER,
  140.         "Header"},
  141.  
  142.         {STR_FOOTER,
  143.         "Footer"},
  144.  
  145.         {STR_SIZE,
  146.         "Size"},
  147.  
  148.         {STR_PROTECTION,
  149.         "Protection"},
  150.  
  151.         {STR_COMMENT,
  152.         "Comment"},
  153.  
  154.         {STR_FILETYPE,
  155.         "File type"},
  156.  
  157.         {STR_PRINT_DOT,
  158.         "Print..."},
  159.  
  160.         {STR_PRINTDIR,
  161.         "Printdir"},
  162.  
  163.         {STR_UNABLE_TO_OPEN_FILE,
  164.         "Unable to open file. Try again?"},
  165.  
  166.         {STR_UNABLE_TO_OPEN_OUTPUT,
  167.         "Unable to open output file. Try again?"},
  168.  
  169.         {STR_UNABLE_TO_OPEN_PRINTER,
  170.         "Unable to open printer. Try again?"},
  171.  
  172.         {STR_ERROR_PRINTING_DIR,
  173.         "Error printing directory. Try again?"},
  174.  
  175.         {STR_INCORRECT_PASSWORD,
  176.         "Incorrect password entered. Try again?"},
  177.  
  178.         {STR_PRINT_ERROR,
  179.         "Print error! Try again?"},
  180.  
  181.         {STR_REALLY_ABORT,
  182.         "Really abort print operation?"},
  183.  
  184.         {STR_CREATING_FILE,
  185.         "Creating file"},
  186.  
  187.         {STR_OPENING_PRINTER,
  188.         "Opening printer"},
  189.  
  190.         {STR_LOADING_FILE,
  191.         "Loading file.."},
  192.  
  193.         {STR_PRINTING_FILE,
  194.         "Printing file..."},
  195.  
  196.         {STR_PRESS_ESCAPE,
  197.         "Press ESC to abort"},
  198.  
  199.         {STR_PAGE,
  200.         "Page"},
  201.  
  202.         {STR_COMPLETE,
  203.         "complete"},
  204.  
  205.         {STR_STRING_COUNT,
  206.         NULL}};
  207.  
  208. #ifdef STRINGS_ONLY
  209. char string_type[]="DOpus_Print strings";
  210. char *string_save="DM_Print_%s.STR";
  211. #endif
  212.